home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / FPUTS.C < prev    next >
C/C++ Source or Header  |  1996-06-25  |  212b  |  11 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int fputs(const char *string, FILE *stream)
  5. {
  6.     int l = strlen(string),i;
  7.     for (i=0; i < l; i++) 
  8.         if (fputc(string[i],stream) == EOF)
  9.             return EOF;
  10.     return 1;
  11. }